home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1998 July / EnigmA AMIGA RUN 29 (1998)(G.R. Edizioni)(IT)[!][issue 1998-07 & 08].iso / earcd / grafica / ghostscript / amiga-gs510 / gs5.03 / configure.in < prev    next >
Text File  |  1997-12-28  |  883b  |  29 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(gs.c)
  3.  
  4. # We want these before the checks, so the checks can modify their values.
  5. test -z "$CFLAGS" && CFLAGS= auto_cflags=1
  6. test -z "$LDFLAGS" && LDFLAGS=
  7.  
  8. AC_PROG_CC
  9. AC_PROG_CPP
  10. AC_PROG_INSTALL
  11. AC_PROG_RANLIB
  12. AC_CHECK_PROG(AR, ar, ar, ar)
  13. AC_GCC_TRADITIONAL
  14.  
  15. # If we're using gcc and the user hasn't specified CFLAGS, add -O to CFLAGS.
  16. test -n "$GCC" && test -n "$auto_cflags" && CFLAGS="$CFLAGS -O2"
  17.  
  18. CFLAGS="$CFLAGS -fno-builtin"
  19. AC_SUBST(CFLAGS)dnl
  20. AC_SUBST(LDFLAGS)dnl
  21.  
  22. AC_OUTPUT(devs.mak gcc-head.mak gs.mak int.mak jpeg.mak \
  23.           lib.mak libpng.mak ugcclib.mak unix-end.mak unixhead.mak  \
  24.           unixtail.mak zlib.mak version.mak tar_cat)
  25.  
  26. AC_OUTPUT_COMMANDS([sh tar_cat])
  27. AC_OUTPUT_COMMANDS([cp unix-gcc.mak makefile])
  28. AC_OUTPUT_COMMANDS([echo "DON'T edit the makefile but its sub files"])
  29.